home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / ACOSH.LI < prev    next >
Text File  |  1993-10-16  |  257b  |  10 lines

  1. #    acosh(x) is the inverse hyperbolic cosine function of x, the inverse
  2. #    of cosh(x).
  3. #    See also: cosh(x)
  4.  
  5. acosh(0) := pi/2*i
  6. acosh(1) := 0
  7. acosh(inf) := inf
  8. acosh(-inf) := inf+pi*i
  9. acosh(x_) := if( isnumber(x) and numeric==on, ln(x+sqrt(x^2-1)) )
  10.